From 89fc30db76f956ef28236a3797ec453e05ef7382 Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Fri, 14 Jul 2006 10:23:52 +0100 Subject: [PATCH] [powerpc] print page->count_info as unsigned long Signed-off-by: Hollis Blanchard --- xen/common/memory.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/common/memory.c b/xen/common/memory.c index cd041e8585..8ed125e98d 100644 --- a/xen/common/memory.c +++ b/xen/common/memory.c @@ -174,9 +174,9 @@ guest_remove_page( { /* We'll make this a guest-visible error in future, so take heed! */ DPRINTK("Dom%d freeing in-use page %lx (pseudophys %lx):" - " count=%x type=%lx\n", + " count=%lx type=%lx\n", d->domain_id, mfn, get_gpfn_from_mfn(mfn), - page->count_info, page->u.inuse.type_info); + (unsigned long)page->count_info, page->u.inuse.type_info); } guest_physmap_remove_page(d, gmfn, mfn); -- 2.30.2